home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / sesame C ƒ / stdio.h < prev    next >
Text File  |  1986-11-28  |  644b  |  20 lines

  1. /*                     */
  2. /*  I/O definitions    */
  3. /*                     */
  4.  
  5. #define stdin 1
  6. #define stdout 2
  7. #define stderr 3
  8.  
  9. #define printf _printf         /* You may be wondering about these */
  10. #define sprintf _sprintf       /* redefinitions of the standard C routines. */
  11. #define fprintf _fprintf       /* This is necessary for passing variable */
  12.                                /* numbers of parameters to these functions. */
  13. #define scanf _scanf           /* To find out how it works, you need to send */
  14. #define sscanf _sscanf         /* for the documentation */
  15. #define fscanf _fscanf
  16.  
  17. #define FILE int
  18. #define EOF -1
  19. #define NULL 0
  20.